home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / vcl.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  402 b   |  20 lines

  1. //
  2. // Stub vcl.h in the main INCLUDE dir
  3. //
  4. // This file is simply a redirection header that allows units which include
  5. // vcl.h to work even if the INCLUDE\VCL dir isn't in the INCLUDE path.
  6. //
  7. // This is used mainly by console apps.
  8. //
  9.  
  10. #ifndef __STUB_VCL_H
  11. #define __STUB_VCL_H
  12.  
  13. #ifdef _NO_VCL
  14. #  include <condefs.h>
  15. #else
  16. #  include <vcl\vcl.h>
  17. #endif
  18.  
  19. #endif /* __STUB_VCL_H */
  20.